home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / include / user / test.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-17  |  1.1 KB  |  46 lines

  1. /*
  2.  * test.h --
  3.  *
  4.  *    User declarations for test system calls.
  5.  *
  6.  * Copyright 1991 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that this copyright
  10.  * notice appears in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /user5/kupfer/spriteserver/include/user/RCS/test.h,v 1.5 92/07/17 16:32:34 kupfer Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _TESTUSER
  19. #define _TESTUSER
  20.  
  21. #define TEST_BUFFER_SIZE    1024
  22.  
  23. #ifndef _MiG
  24.  
  25. #include <sprite.h>
  26.  
  27. /* 
  28.  * Definitions for MIG-generated stubs.
  29.  */
  30. typedef char Test_MessageBuffer[TEST_BUFFER_SIZE];
  31.  
  32. extern void    Test_PutDecimal();
  33. extern void    Test_PutHex();
  34. extern void    Test_PutOctal();
  35. extern void    Test_PutMessage();
  36. extern void    Test_PutTime();
  37. extern void    Test_PutString();
  38. extern void    Test_GetString();
  39.  
  40. extern void    Test_MemCheck();
  41. extern void    Test_Return1();
  42. extern void    Test_Return2();
  43.  
  44. #endif /* _MiG */
  45. #endif /* _TESTUSER */
  46.